home *** CD-ROM | disk | FTP | other *** search
GW-BASIC | 1987-05-08 | 1.4 KB | 32 lines |
- 10 CLS
- 20 SCREEN 0,0,0
- 30 WIDTH 80
- 40 KEY OFF
- 50 LOCATE 1,1,0
- 60 COLOR 7,0,0
- 70 LOCATE 2,15:PRINT "A note from the author(DO NOT REMOVE)."
- 80 LOCATE 3,10:PRINT " I have written MATH PAK with the intent that"
- 90 LOCATE 4,10:PRINT "it will help and accelerate solving some of the"
- 100 LOCATE 5,10:PRINT "many mathematical problems faced by secondary "
- 110 LOCATE 6,10:PRINT "school students, high school and college level"
- 120 LOCATE 7,10:PRINT "students and for anyone needing mathematical help."
- 130 LOCATE 9,10:PRINT " I hope to have 'touched base ' with the major "
- 140 LOCATE 10,10:PRINT "math operations, including others not commonly used."
- 150 LOCATE 11,10:PRINT " MATH PAK is not for retail sale, and you are encouraged"
- 160 LOCATE 12,10:PRINT "to let others copy this COMPLETE DISK. I have also written"
- 170 LOCATE 13,10:PRINT "a detailed manual that shows how the program works with"
- 180 LOCATE 14,10:PRINT "some key examples and solutions. But alas, due to "
- 190 LOCATE 15,10:PRINT "printing costs, I must charge you for the manual($ 4.00)."
- 200 LOCATE 16,10:PRINT " Please feel free to write to me regarding any questions,"
- 210 LOCATE 17,10:PRINT "general comments, bugs(not insects), and insults."
- 220 LOCATE 18,10:PRINT "You can also order your manual by sending a check or MO"
- 230 LOCATE 19,10:PRINT "to me for $ 4.00 ."
- 240 LOCATE 20,10:PRINT " Send to:"
- 250 LOCATE 20,20:PRINT "Dan Dalal"
- 260 LOCATE 21,20:PRINT "P.O. Box 1303"
- 270 LOCATE 22,20:PRINT "Cupertino, Ca. 95015-1303"
- 280 LOCATE 23,10:PRINT "Thank you...Press the space bar to continue..."
- 290 AQW$ = INKEY$
- 300 IF AQW$ = CHR$(32) THEN CLS:CHAIN"mp"
- 310 GOTO 290
-